home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / lingua13.zip / UI_TEXT.H < prev    next >
C/C++ Source or Header  |  1994-03-13  |  734b  |  31 lines

  1. /* ui_text.h */
  2.  
  3. #ifndef UI_TEXT_H
  4. #define UI_TEXT_H
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. int ui_loadtext(char *fname,char *vers);
  11. void ui_unloadtext(void);
  12. char *ui_filetext(unsigned pos);
  13. char **ui_filearray(unsigned pos);
  14. extern char **ui_text;
  15.  
  16. #define ZEROTH                         ui_text[0]
  17. #define FIRST                          ui_text[1]
  18. #define SECOND                         ui_text[2]
  19. #define THIRD                          (ui_text+3)
  20. #define EIGHTH                         ui_text[8]
  21. #define NINTH                          ui_filetext(0)
  22. #define TENTH                          ui_filetext(1)
  23. #define ELEVEN                         ui_filetext(2)
  24.  
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28.  
  29. #endif
  30.  
  31.